3f44fc0b5e03fcbdf684f7cc3e9cb007e58ce6b6,inventory/src/main/java/org/apache/felix/inventory/impl/AbstractWebConsolePlugin.java,AbstractWebConsolePlugin,printConfigurationInventory,#ConfigurationWriter#PrinterMode#InventoryPrinterHandler#,61

Before Change


            final InventoryPrinterHandler handler )
    throws IOException {
        if ( handler == null ) {
            for(final InventoryPrinterHandler sph : this.inventoryPrinterManager.getHandlers(mode)) {
                pw.printInventory(mode, sph);
            }
        } else {

After Change


            final InventoryPrinterHandler handler )
    throws IOException {
        if ( handler == null ) {
            final InventoryPrinterHandler[] adapters = this.inventoryPrinterManager.getHandlers(mode);
            for(int i = 0; i < adapters.length; i++) {
                pw.printInventory(mode, adapters[i]);
            }
        } else {